JavaScript

listObj.checkAllRows Method

Syntax

listObj.checkAllRows()

Description

Checks all of the rows in the List.

Discussion

The checkAllRows() method checks all of the rows in the List control.

Example

var listObj = {dialog.object}.getControl('LIST1');

if (listObj) {
    listObj.checkAllRows();
}
This method is only available if Has check-box select control has been enabled.

Limitations

List Control with 'Has check-box select control' Enabled

See Also